home *** CD-ROM | disk | FTP | other *** search
/ Champak 141 / (Vol 141) Oct 17 2011.iso / Games / Clueless.swf / scripts / fl / video / QueuedCommand.as < prev    next >
Encoding:
Text File  |  2011-10-17  |  807 b   |  37 lines

  1. package fl.video
  2. {
  3.    public class QueuedCommand
  4.    {
  5.       
  6.       public static const LOAD:uint = 1;
  7.       
  8.       public static const STOP:uint = 3;
  9.       
  10.       public static const PLAY_WHEN_ENOUGH:uint = 5;
  11.       
  12.       public static const PLAY:uint = 0;
  13.       
  14.       public static const PAUSE:uint = 2;
  15.       
  16.       public static const SEEK:uint = 4;
  17.        
  18.       
  19.       public var type:uint;
  20.       
  21.       public var time:Number;
  22.       
  23.       public var url:String;
  24.       
  25.       public var isLive:Boolean;
  26.       
  27.       public function QueuedCommand(param1:uint, param2:String, param3:Boolean, param4:Number)
  28.       {
  29.          super();
  30.          this.type = param1;
  31.          this.url = param2;
  32.          this.isLive = param3;
  33.          this.time = param4;
  34.       }
  35.    }
  36. }
  37.